home *** CD-ROM | disk | FTP | other *** search
/ Scene 96 / Scene 96 International Edition (Zyklop Software) (Disc 2) (1997).iso / misc / coding / midas060 / src / mglobals.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-01-16  |  1.6 KB  |  44 lines

  1. /*      MGLOBALS.C
  2.  *
  3.  * MIDAS Sound System global variables
  4.  *
  5.  * $Id: mglobals.c,v 1.4 1997/01/16 18:41:59 pekangas Exp $
  6.  *
  7.  * Copyright 1996,1997 Housemarque Inc.
  8.  *
  9.  * This file is part of the MIDAS Sound System, and may only be
  10.  * used, modified and distributed under the terms of the MIDAS
  11.  * Sound System license, LICENSE.TXT. By continuing to use,
  12.  * modify or distribute this file you indicate that you have
  13.  * read the license and understand and accept it fully.
  14. */
  15.  
  16. #include "lang.h"
  17. RCSID(const char *mglobals_rcsid = "$Id: mglobals.c,v 1.4 1997/01/16 18:41:59 pekangas Exp $";)
  18.  
  19. int             mUseEMS;                /* 1 if EMS should be used */
  20. int             mEnableSurround;        /* 1 if surround sound is enabled */
  21. int             mBufferLength;          /* buffer length in milliseconds */
  22. int             mBufferBlocks;          /* number of buffer blocks
  23.                                            (not applicable to all SDs) */
  24. int             mDefaultFramerate;      /* default framerate (in 100*Hz), used
  25.                                            when screen sync is not available*/
  26. int             mSyncScreen;            /* 1 if timer can be synchronized to
  27.                                            screen */
  28.  
  29.  
  30. /*
  31.  * $Log: mglobals.c,v $
  32.  * Revision 1.4  1997/01/16 18:41:59  pekangas
  33.  * Changed copyright messages to Housemarque
  34.  *
  35.  * Revision 1.3  1996/05/31 21:40:23  pekangas
  36.  * Added mSyncScreen and mDefaultFramerate
  37.  *
  38.  * Revision 1.2  1996/05/25 09:32:13  pekangas
  39.  * Added mBufferLength and mBufferBlocks
  40.  *
  41.  * Revision 1.1  1996/05/22 20:49:33  pekangas
  42.  * Initial revision
  43.  *
  44. */